arch_serial_putc is not required any more.
authorkevin@localhost.localdomain <kevin@localhost.localdomain>
Tue, 16 Aug 2005 01:00:21 +0000 (09:00 +0800)
committerkevin@localhost.localdomain <kevin@localhost.localdomain>
Tue, 16 Aug 2005 01:00:21 +0000 (09:00 +0800)
Signed-off-by Kevin Tian <kevin.tian@intel.com>

xen/include/asm-ia64/serial.h

index 4acf7a77f1418bb93cc4f87f320cd2ea8ec6f495..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,20 +0,0 @@
-#ifndef __ASM_SERIAL_H__
-#define __ASM_SERIAL_H__
-
-#include <asm/regs.h>
-#include <asm/irq.h>
-#include <xen/serial.h>
-#include <asm/hpsim_ssc.h>
-
-#ifndef CONFIG_VTI 
-#define arch_serial_putc(_uart, _c)                                    \
-       ( platform_is_hp_ski() ? (ia64_ssc(c,0,0,0,SSC_PUTCHAR), 1) :   \
-       ( longs_peak_putc(c), 1 ))
-#else
-#define arch_serial_putc(_uart, _c)                                    \
-       ( platform_is_hp_ski() ? (ia64_ssc(c,0,0,0,SSC_PUTCHAR), 1) :   \
-       ( (inb((_uart)->io_base + LSR) & LSR_THRE) ?                    \
-       (outb((_c), (_uart)->io_base + THR), 1) : 0 ))
-#endif
-
-#endif /* __ASM_SERIAL_H__ */